From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:57:03 +0000 (+0000) Subject: (backward-delete-char-untabify): Fix use of character constant. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~28270 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fbeb78320f6cc72c08d76c0e64138003068f092d;p=emacs.git (backward-delete-char-untabify): Fix use of character constant. --- diff --git a/lisp/simple.el b/lisp/simple.el index 90ebd908dfb..82859767b18 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2091,7 +2091,7 @@ and KILLP is t if a prefix arg was specified." (let ((col (current-column))) (forward-char -1) (setq col (- col (current-column))) - (insert-char ?\ col) + (insert-char ?\ col) (delete-char 1))) (forward-char -1) (setq count (1- count))))))